25cff4d5a9f37d1fff2959c2638216b165e48015,src/test/java/gluu/scim2/client/ScimClientGroupWriteOperationsTest.java,ScimClientGroupWriteOperationsTest,updateGroupTest,#String#String#,59

Before Change



		assertEquals(response.getStatusCode(), 200, "cold not update the group, status != 200");

		Group group = (Group) Util.toGroup(response);
		assertEquals(group.getDisplayName(), updatedDisplayName, "could not update the group");
	}

After Change


		System.out.println("updateGroupTest + responseStr" + response.getResponseBodyString());
		assertEquals(response.getStatusCode(), 200, "cold not update the group, status != 200");

		Group group = Util.toGroup(response);
		assertEquals(group.getDisplayName(), updatedDisplayName, "could not update the group");
	}